{% load static %}

🎨 Random Color Palette Generator (Django)

Pure Python — no external APIs. Shows HEX, RGB, HSL and OKLCH.

{% for c in palette %}
{{ c.hex }}
RGB: {{ c.rgb }}
HSL: {{ c.hsl }}
OKLCH: {{ c.oklch }}
{% endfor %}